home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / PPCSmallTalk / sources / smakefile < prev    next >
Encoding:
Makefile  |  1998-02-08  |  459 b   |  15 lines

  1. # makefile for SAS/C for PPC (powerUP)
  2. # written in 1998 by Andreas R. Kleinert
  3.  
  4. CC   = SCPPC
  5. OBJS = byte.o symbol.o cldict.o interp.o drive.o lex.o lexcmd.o \
  6.       primitive.o line.o courier.o object.o number.o           \
  7.       syms.o main.o process.o array.o file.o block.o           \
  8.       string.o class.o
  9.  
  10. st.elf: $(OBJS)
  11.  
  12.           ppc-amigaos-ld -r LIB:c_ppc.o $(OBJS) LIB:scppc.a lib:end.o -o st.elf
  13.           Copy st.elf /
  14.           Delete st.elf
  15.